home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / edit / e4dv203.zip / COMPILE.CL < prev    next >
Text File  |  1994-09-12  |  896b  |  49 lines

  1. ; COMPILE Sample Configuration File
  2.  
  3. ; Placeholders:
  4.  
  5. ; $f    full filename, with directory, path and extension
  6. ; $p    pathname part of filename, with trailing \ if one is present
  7. ; $d    name of directory containing filename, without trailing \
  8. ; $x    extension of file, with leading .
  9. ; $n    name part of filename, without extension
  10. ; $$    a dollar sign
  11.  
  12. ; The above may be capitalised if you wish the string that they 
  13. ; represent to be in captials also.
  14.  
  15. ; Borland C/C++
  16. *.c
  17.     bcc -v $f
  18.  
  19. ; Turbo Assembler
  20. *.asm
  21.     tasm /zi $f
  22.     tlink /v $p$n.obj
  23.  
  24. ; If you want to use MASM comment out the above lines and 
  25. ; use these instead
  26.  
  27. ; Microsoft Assembler
  28. ;*.asm
  29. ;    masm /zi $f;
  30. ;    link /co $p$n;
  31.  
  32. ; Turbo Pascal
  33. *.pas
  34.     tpc $f
  35.  
  36. ; Fitted Software Modula-2
  37. *.mod
  38.     m2comp $f
  39.     m2link $p
  40.  
  41. ; E4 Macro Library Files
  42. *.mac
  43.     e4mc $f
  44.  
  45. ; Procomm ASPECT Language
  46. *.asp
  47.     aspcomp $f
  48.  
  49.